home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / bbsutil / idccom12.zip / SAMPLE.SCR < prev    next >
Text File  |  1990-10-12  |  999b  |  29 lines

  1.  
  2. ; This is a comment line
  3. * this is also a comment line
  4. ' and so it this
  5.  
  6. CLEAR                    ; clear the screen
  7. WAITTIME 20                ; set time limit for WAITFOR command
  8. ECHO OFF                ; do not echo commands to local screen
  9. BEEP                    ; make a beep
  10. IFNOTCD goto end                        ; if not carrier detect goto label end
  11.     WAITFOR "[y/n]"            ; wait for this text (max of WAITTIME)
  12.     SENDLN "Y"            ; after text is found, send Y and a CR
  13.     WAITFOR "Your FIRST name:"    ; wait for this text
  14.     SENDLN "BOB FERGUS Y BIGTOOL"    ; send this response
  15.     SENDLN " "            ; send a space and CR
  16.     SENDCTRL K            ; send control-k
  17.     WAITFOR "Press"            ; wait for this text
  18.     SENDLN " "            ; send a space and CR
  19.     WAITFOR "number"        ; wait for this text
  20.     SENDLN "Q"
  21.     WAITFOR "mail"
  22.     SENDLN "N"
  23.     PAUSE 3                ; pause for 3 seconds
  24.     ;SENDLN "U M"            ; send this text to upload via megalink
  25.     ;PAUSE 3            ; wait 3 seconds
  26.     ;XMIT -ML SAMPLE.SCR        ; upload SAMPLE.SCR via megalink
  27. :END                    ; a label
  28. QUIT                    ; exit the script file
  29.